home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / port / ru.h < prev    next >
C/C++ Source or Header  |  1996-07-10  |  1KB  |  26 lines

  1. /* k 8001 19.07.90 */
  2. /* k 1003 22-08-90 */
  3. union  ru {           /* request-response unit */
  4.     char cru[97];            /* any 97-bytes ru */
  5.     struct code code;               /* any ru */
  6.     struct { unsigned cd1:8;
  7.          unsigned cd2:8;
  8.          unsigned cd3:8;
  9.          unsigned cd4:8;
  10.          unsigned cd5:8;
  11.          unsigned cd6:8;
  12.             } cmd;                  /* network command code */
  13.     unsigned long sense;            /* sense code */
  14.     union data data;                /* datagram */
  15.     struct bind bind;               /* bind */
  16.     struct unbind unbind;           /* unbind */
  17.     struct initself logon;          /* initself */
  18.     struct drl drl0;                /* drl      1003 */
  19.     struct rbs rbs0;                /* rbs      1003 */
  20.     struct termself term;           /* termself */
  21.              };
  22. #define RUOSST  0x43                /* OSST-LVS 1003 */
  23. #define RUSDT   0xA0                /* SDT      1003 */
  24. #define RUBIND  0x31                /* BIND     1003 */
  25. #define RUUNBND 0x32                /* UNBIND   1003 */
  26.